home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 with MFC / Programming Windows 95 with MFC (Microsoft Programming Series)(097-0001465)(1996).iso / CODE / Chap12 / BitmapDemo / BitmapDemo.rc < prev    next >
Encoding:
Text File  |  1996-04-05  |  552 b   |  21 lines

  1. //***********************************************************************
  2. //
  3. //  BitmapDemo.rc
  4. //
  5. //***********************************************************************
  6.  
  7. #include <afxres.h>
  8. #include "Resource.h"
  9.  
  10. IDR_BITMAP BITMAP Drive.bmp
  11.  
  12. IDR_MAINFRAME MENU
  13. BEGIN
  14.     POPUP "&Options" {
  15.         MENUITEM "Draw &Opaque",            IDM_OPTIONS_DRAW_OPAQUE
  16.         MENUITEM "Draw &Transparent",       IDM_OPTIONS_DRAW_TRANSPARENT
  17.         MENUITEM SEPARATOR
  18.         MENUITEM "E&xit",                   IDM_OPTIONS_EXIT
  19.     }
  20. END
  21.